home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / fnmatch.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-30  |  356 b   |  27 lines

  1.  
  2. #ifndef    FNM_PATHNAME
  3. #define FNM_PATHNAME (1 << 0)
  4. #endif
  5.  
  6. #ifndef    FNM_QUOTE
  7. #define FNM_QUOTE (1 << 1)
  8. #endif
  9.  
  10. #ifndef    FNM_NOMATCH
  11. #define FNM_NOMATCH 1
  12. #endif
  13.  
  14. #ifndef    FNM_ERROR
  15. #define FNM_ERROR 2
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. int       fnmatch(const char *, const char *, int);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.